home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 26 / Cream of the Crop 26.iso / program / wsc4c21.zip / MODEM16._W_ < prev    next >
Text File  |  1997-05-22  |  807b  |  38 lines

  1. #
  2. # Watcom makefile for MODEM [Win16]
  3. #
  4. # TO MAKE: wmake -f modem16._W_
  5. #
  6.  
  7. CCFLAGS = -c -oaxt -d2 -w4 -zW
  8.  
  9. OBJS = modem.obj about.obj config.obj line.obj menu.obj paint.obj sioerror.obj
  10.  
  11. modem.exe: $(OBJS) modem.res modem.def wsc16.lib
  12.    wlink @modem16.lnk
  13.    wrc modem.res
  14.  
  15. modem.res: $(OBJS) modem.rc
  16.    wrc -r -bt=windows modem.rc
  17.  
  18. about.obj: about.c about.h
  19.    wcl $(CCFLAGS)  about.c
  20.  
  21. config.obj: config.c config.h wsc.h
  22.     wcl $(CCFLAGS)  config.c
  23.  
  24. line.obj: line.c line.h wsc.h
  25.     wcl $(CCFLAGS)  line.c
  26.  
  27. menu.obj: menu.c menu.h wsc.h
  28.     wcl $(CCFLAGS)  menu.c
  29.  
  30. paint.obj: paint.c paint.h wsc.h
  31.     wcl $(CCFLAGS)  paint.c
  32.  
  33. modem.obj: modem.c modem.h wsc.h
  34.    wcl $(CCFLAGS)  modem.c
  35.  
  36. sioerror.obj: sioerror.c sioerror.h wsc.h
  37.    wcl $(CCFLAGS)  sioerror.c
  38.